Skip to main content

🔧 Basic Setup

To start using Hashi App module, import the installed module in your page.

import HashiApp from '@hashi-team/react-native';

function YourAppPage() {
return (
<HashiApp />
);
}

⚙️ apiUrl (Optional)

The apiUrl is utilized for connecting and fetching content from your specific backend. By default, the module connects to our sample backend.

return (
<HashiApp apiUrl="your_api_url_here" />
);

🚀 To get your own apiUrl and custom content, please contact support: soporte@hashiapp.com

Ready to go! 🥳

With this setup, shorts should now be visible within your app. For advanced interaction capabilities and to leverage user-specific features, proceed to the authentication guide next.